projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2654410
)
(sgml-tag-help): Pass proper format string to message.
author
Karl Heuer
<kwzh@gnu.org>
Thu, 25 Jan 1996 00:57:01 +0000
(
00:57
+0000)
committer
Karl Heuer
<kwzh@gnu.org>
Thu, 25 Jan 1996 00:57:01 +0000
(
00:57
+0000)
lisp/textmodes/sgml-mode.el
patch
|
blob
|
history
diff --git
a/lisp/textmodes/sgml-mode.el
b/lisp/textmodes/sgml-mode.el
index f146e21a4b360136f9f20e2b507d1a1676a71167..b71e0a2f1290fdb6135a7a7b750ec30ac5bacdd3 100644
(file)
--- a/
lisp/textmodes/sgml-mode.el
+++ b/
lisp/textmodes/sgml-mode.el
@@
-530,7
+530,8
@@
With prefix ARG only self insert."
(or (stringp tag)
(error "No tag selected"))
(setq tag (downcase tag))
- (message (or (cdr (assoc tag sgml-tag-help))
+ (message "%s"
+ (or (cdr (assoc tag sgml-tag-help))
(and (eq (aref tag 0) ?/)
(cdr (assoc (substring tag 1) sgml-tag-help)))
"No description available")))